Skip to main content
Version: Upcoming

SRUserCancel

V8 Message Definiton

Records inserted into this table cancels all parent orders associated with userName/clientFirm

METADATA

AttributeValue
Topic3985-parent-orders
MLink TokenClientTrading
ProductSRTrade
accessTypeSELECT,INSERT,DELETE
MLink EndpointMLink-Order

Table Definition

FieldTypeKeyDefault ValueComment
cxlUserNameVARCHAR(24)PRI''Cancel all parent orders associated with cxlUserName and clientFirm
clientFirmVARCHAR(16)PRI''
sysEnvironmentenum - SysEnvironment'None'original source sys environment Stable Current etc
runStatusenum - RunStatus'None'original source run status ProdBeta
cxlReasonVARCHAR(16)''
engineNameVARCHAR(32)''set by the engine handling event should be blank on arrival
modifiedByVARCHAR(24)''user who last modified this record
modifiedInenum - SysEnvironment'None'
timestampDATETIME(6)'1900-01-01 00:00:00.000000'timestamp of last modification

PRIMARY KEY DEFINITION (Unique)

FieldSequence
cxlUserName1
clientFirm2

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRTrade`.`MsgSRUserCancel`
WHERE
/* Replace with a VARCHAR(24) */
`cxlUserName` = 'Example_cxlUserName'
AND
/* Replace with a VARCHAR(16) */
`clientFirm` = 'Example_clientFirm';

INSERT TABLE EXAMPLE QUERY

INSERT INTO `SRTrade`.`MsgSRUserCancel`(
/* Replace with a VARCHAR(24) */
`cxlUserName`,
/* Replace with a VARCHAR(16) */
`clientFirm`,
/* Replace with a ENUM('None','Neptune','Pluto','V7_Stable','V7_Latest','Saturn','Venus','Mars','SysTest','V7_Current') */
`sysEnvironment`,
/* Replace with a ENUM('None','Prod','Beta','UAT','SysTest') */
`runStatus`,
/* Replace with a VARCHAR(16) */
`cxlReason`,
/* Replace with a VARCHAR(32) */
`engineName`,
/* Replace with a DATETIME(6) */
`timestamp`
)
VALUES(
'Example_cxlUserName',
'Example_clientFirm',
'None',
'None',
'Example_cxlReason',
'Example_engineName',
'2022-01-01 12:34:56.000000'
);

DELETE TABLE EXAMPLE QUERY

DELETE FROM `SRTrade`.`MsgSRUserCancel` 
WHERE
/* Replace with a VARCHAR(24) */
`cxlUserName` = 'Example_cxlUserName'
AND
/* Replace with a VARCHAR(16) */
`clientFirm` = 'Example_clientFirm';

Doc Columns Query

SELECT * FROM SRTrade.doccolumns WHERE TABLE_NAME='SRUserCancel' ORDER BY ordinal_position ASC;